home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v10n11.arc / PROCZIP.BAT < prev    next >
DOS Batch File  |  1991-05-10  |  262b  |  13 lines

  1. @ECHO OFF
  2. REM *** This is PROCZIP.BAT ***
  3. MD TEMPZIP.$$$
  4. CD TEMPZIP.$$$
  5. PKUNZIP ..\%1
  6. CALL PROCESS.BAT
  7. REM If you are running DOS prior to 3.3, replace "CALL" in
  8. REM the line above with "COMMAND /C"
  9. DEL ..\%1
  10. PKZIP -m ..\%1 *.*
  11. CD ..
  12. RD TEMPZIP.$$$
  13.